A. JVM
B. virtual machine
C. applet engine
D. None of above
Advertisement
Related Mcqs:
- Which method of the Applet class displays the result of applet code on screen ?
- A. paint() method B. main() method C. run() method D. drawString() method...
- Executable applet is_________________?
- A. .class file B. .java file C. .java html D. .applet file...
- Which method executes only once ?
- A. stop() method B. start() method C. init() method D. destroy() method...
- Smallest individual unit in java program is known as____________________?
- A. token B. string C. literal D. operator...
- Which of the following command is used to compile the Java program ?
- A. java B. javac C. javap D. none of these...
- Minimum threads in a program are________________?
- A. 0 B. 1 C. 2 D. 3...
- What will be output of following program? public class Test{public static void main(String[] args){byte b=127; b++; b++; System.out.println(b); } } ?
- A. 127 B. -127 C. 129 D. -129...
- The following program: public class Test{ static boolean is OK; public static void main(String args[]){System.out.print(is OK); } } ?
- A. Prints true B. Prints false C. Will not compile as boolean is not initialized D. Will not compile as boolean can never be static...
- What will the output of the following program? public class Test{ public static void main(String args[]){float f = (1 / 4) * 10; int i = Math.round(f); System.out.println(i); } } ?
- A. 0 B. 1 C. 2 D. 3...
- If method have same name as class name and method don’t have any return type then it is known as______________?
- A. Constructor B. Destructors C. Variable D. Object...
Advertisement